home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 October: Mac OS SDK / Dev.CD Oct 00 SDK1.toast / Development Kits / Cross Platform / QuickTime 4.1.2 Windows SDK / RIncludes / IAExtractor.r < prev    next >
Encoding:
Text File  |  2000-04-12  |  762 b   |  40 lines  |  [TEXT/R*ch]

  1. /*
  2.      File:        IAExtractor.r
  3.  
  4.      Contains:    Interfaces to Find by Content Plugins that scan files
  5.  
  6.      Version:    Technology:    Mac OS 8.6
  7.                  Release:    QuickTime 4.1
  8.  
  9.      Copyright:    © 1999 by Apple Computer, Inc., all rights reserved.
  10.  
  11.      Bugs?:        For bug reports, consult the following page on
  12.                  the World Wide Web:
  13.  
  14.                      http://developer.apple.com/bugreporter/
  15.  
  16. */
  17.  
  18. #ifndef __IAEXTRACTOR_R__
  19. #define __IAEXTRACTOR_R__
  20.  
  21. #ifndef __CONDITIONALMACROS_R__
  22. #include "ConditionalMacros.r"
  23. #endif
  24.  
  25.  
  26. #define kIACurrentMIMEMappingVersion    1
  27.  
  28. type 'mimp' {
  29.     longint;        /* resource version */
  30.     longint;        /* file type         */
  31.     longint;        /* file creator     */
  32.     pstring;        /* file extension    */
  33.     pstring;        /* MIME type    */
  34.     pstring;        /* description    */
  35. };
  36.  
  37.  
  38. #endif /* __IAEXTRACTOR_R__ */
  39.  
  40.